home *** CD-ROM | disk | FTP | other *** search
/ Digitální fotografie a video / Digitalni-fotografie-a-video-covermount.bin / Aplikace / Servis / Help.dxr / 00009_Najezd a klik pomoc.ls < prev    next >
Encoding:
Text File  |  1998-05-19  |  644 b   |  29 lines

  1. on beginSprite me
  2.   set the visible of sprite the spriteNum of me to 1
  3.   set the visible of sprite (the spriteNum of me + 1) to 0
  4. end
  5.  
  6. on endSprite me
  7. end
  8.  
  9. on mouseEnter me
  10.   puppetSound(1, "Najezd")
  11.   set the cursor of sprite the spriteNum of me to [member "ruka_1", member "ruka_2"]
  12.   set the visible of sprite (the spriteNum of me + 1) to 1
  13. end
  14.  
  15. on mouseLeave me
  16.   set the visible of sprite (the spriteNum of me + 1) to 0
  17.   set the cursor of sprite the spriteNum of me to -1
  18. end
  19.  
  20. on mouseDown me
  21.   puppetSound(1, "Klik")
  22. end
  23.  
  24. on mouseUp me
  25.   global Historie_2
  26.   set the cursor of sprite the spriteNum of me to -1
  27.   play movie Historie_2
  28. end
  29.